projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1f5b164
)
When turning on default settings,
author
Richard M. Stallman
<rms@gnu.org>
Tue, 26 Dec 1995 04:38:27 +0000
(
04:38
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Tue, 26 Dec 1995 04:38:27 +0000
(
04:38
+0000)
preserve iso-accents-enable if it's already set.
lisp/international/iso-acc.el
patch
|
blob
|
history
diff --git
a/lisp/international/iso-acc.el
b/lisp/international/iso-acc.el
index 0febc122ec5f68ce6dfd7d98ec45cb1927367d99..ae8aace6344a260fcfa5d025d3e5c458f7868807 100644
(file)
--- a/
lisp/international/iso-acc.el
+++ b/
lisp/international/iso-acc.el
@@
-327,7
+327,11
@@
Noninteractively, this operates on text from START to END."
(insert (car (cdr (car entry)))))
(forward-char 1)))))))
-(iso-accents-customize "default")
+;; Set up the default settings, but don't override
+;; iso-accents-enable if the user has already set it.
+(let ((old iso-accents-enable))
+ (iso-accents-customize "default")
+ (if old
+ (setq iso-accents-enable old)))
;;; iso-acc.el ends here
-